From: Gabor Juhos Date: Sun, 15 Dec 2013 20:39:13 +0000 (+0000) Subject: firmware-utils/mkplinkfw: add TL-WA801ND v2 support X-Git-Url: http://git.openwrt.org/%22http:/oss.oetiker.ch/rrdtool//%22/%22http:/oss.oetiker.ch/rrdtool/%22?a=commitdiff_plain;h=4952d691239e0e4f5c346f1938a3885ac9253118;p=project%2Ffirmware-utils.git firmware-utils/mkplinkfw: add TL-WA801ND v2 support Signed-off-by: Jiri Pirko Patchwork: http://patchwork.openwrt.org/patch/4503/ Signed-off-by: Gabor Juhos SVN-Revision: 39066 --- diff --git a/src/mktplinkfw.c b/src/mktplinkfw.c index 195d169..1c3f49d 100644 --- a/src/mktplinkfw.c +++ b/src/mktplinkfw.c @@ -42,6 +42,7 @@ #define HWID_TL_WA801ND_V1 0x08010001 #define HWID_TL_WA830RE_V1 0x08300010 #define HWID_TL_WA830RE_V2 0x08300002 +#define HWID_TL_WA801ND_V2 0x08010002 #define HWID_TL_WA901ND_V1 0x09010001 #define HWID_TL_WA901ND_V2 0x09010002 #define HWID_TL_WDR4900_V1 0x49000001 @@ -255,6 +256,11 @@ static struct board_info boards[] = { .hw_id = HWID_TL_WA830RE_V2, .hw_rev = 1, .layout_id = "4M", + }, { + .id = "TL-WA801NDv2", + .hw_id = HWID_TL_WA801ND_V2, + .hw_rev = 1, + .layout_id = "4Mlzma", }, { .id = "TL-WA901NDv1", .hw_id = HWID_TL_WA901ND_V1,